type runtime/pprof.labelMap

13 uses

	runtime/pprof (current package)
		label.go#L27: func labelValue(ctx context.Context) labelMap {
		label.go#L28: 	labels, _ := ctx.Value(labelContextKey{}).(*labelMap)
		label.go#L30: 		return labelMap{}
		label.go#L38: type labelMap struct {
		label.go#L44: func (l *labelMap) String() string {
		label.go#L62: 	return context.WithValue(ctx, labelContextKey{}, &labelMap{mergeLabelSets(parentLabels.LabelSet, labels)})
		pprof.go#L398: func (x stackProfile) Label(i int) *labelMap { return nil }
		pprof.go#L407: 	Label(i int) *labelMap
		pprof.go#L464: 	key := func(stk []uintptr, lbls *labelMap) string {
		pprof.go#L814: func (p *runtimeProfile) Label(i int) *labelMap { return (*labelMap)(p.labels[i]) }
		proto.go#L370: 				for _, lbl := range (*labelMap)(e.tag).list {
		runtime.go#L36: 	ctxLabels, _ := ctx.Value(labelContextKey{}).(*labelMap)